Package it.czerwinski.kotlin.collections

Contains iterators used by the utility types.

Types

Link copied to clipboard
object EmptyIterator : Iterator<Nothing>

Iterator producing no values.

Link copied to clipboard
class SingletonIterator<T>(element: T) : Iterator<T>

Iterator producing a single element.